home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_11_12 / engbert / proto.h < prev    next >
Encoding:
Text File  |  1993-05-10  |  755 b   |  30 lines

  1.  
  2. /* file identity.c: */
  3. int is_our_extension (char *file_extension);
  4. char *return_extension ();
  5. int write_file_header();
  6.  
  7. /* file usage.c: */
  8. int usage();
  9. char **get_arguments(int argc, char **argv, int *overwrite, char *output_directory);
  10.  
  11. /* file main.c: */
  12. void onintr ();
  13. int writeerr();
  14. int copy_mode();
  15. int copy_date_time();
  16. int main(int argc, char **argv );
  17.  
  18. /* file comp.c: */
  19. int compress(long file_length);
  20.  
  21. /* file bits.c: */
  22. int write_byte (unsigned char byte);
  23. int flush_bits();
  24. void write_bit (unsigned char bit);
  25. int init_bits();
  26.  
  27. /* file nodes.c: */
  28. void encode_byte(unsigned int start, unsigned int list_count, unsigned int count);
  29. void update_list( unsigned int *byte_count, unsigned int *character_count);
  30.